home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / include / gadgets / rcs / scroller.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.1 KB  |  80 lines

  1. head    1.2;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.2; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.2
  10. date    97.07.14.04.27.22;    author dlorre;    state Exp;
  11. branches;
  12. next    1.1;
  13.  
  14. 1.1
  15. date    96.08.22.02.06.07;    author dlorre;    state Exp;
  16. branches;
  17. next    ;
  18.  
  19.  
  20. desc
  21. @Oui.lib -- Object User Interface
  22. Projet créé en 1994
  23. Auteur: Dominique Lorre
  24. @
  25.  
  26.  
  27. 1.2
  28. log
  29. @*** empty log message ***
  30. @
  31. text
  32. @// $Id$
  33. #ifndef CLASS_SCROLLER_H
  34. #define CLASS_SCROLLER_H
  35.  
  36. #ifndef EXEC_TYPES_H
  37. #include <exec/types.h>
  38. #endif
  39.  
  40. #ifndef CLASS_WINDOW_H
  41. class window ;
  42. #endif
  43.  
  44. #ifndef CLASS_GADGETLIST_H
  45. class gadgetlist ;
  46. #endif
  47.  
  48. #ifndef CLASS_GADGET_H
  49. #include "gadgets/gadget.h"
  50. #endif
  51.  
  52.  
  53.  
  54. // ========================================================================
  55. // ==========================  SCROLLER CLASS =============================
  56. // ========================================================================
  57.  
  58.  
  59. class scroller : public gadget
  60. {
  61. public:
  62.     scroller(gadgetlist *gl,
  63.              void (window::*func)(gadget *, unsigned long, unsigned short),
  64.              long top, long view, long total,
  65.              unsigned short arrows=TRUE) ;
  66. };
  67.  
  68.  
  69. #endif
  70. @
  71.  
  72.  
  73. 1.1
  74. log
  75. @Initial revision
  76. @
  77. text
  78. @d1 1
  79. @
  80.